home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / comm / misc / MPackMUI.lha / MPackMUI / Source / ProgFuncs.h < prev   
Encoding:
C/C++ Source or Header  |  2000-08-23  |  1023 b   |  41 lines

  1. // --------------------------------------------------------------------------------------------------------------
  2. //
  3. //   MPackMUI V1.01 Program Header
  4. //
  5. // --------------------------------------------------------------------------------------------------------------
  6.  
  7. #include <exec/lists.h>
  8. #include <exec/types.h>
  9.  
  10. #include <clib/alib_protos.h>
  11. #include <proto/dos.h>
  12. #include <proto/exec.h>
  13.  
  14. #include <string.h>
  15.  
  16. // --------------------------------------------------------------------------------------------------------------
  17.  
  18. // Internal prototypes
  19.  
  20. void FreeList(struct List *);
  21. void DefaultMIMEList();
  22. void RebuildMIMETypes();
  23. void RebuildMIMEList();
  24. void OpenPrefs(char *);
  25. void SavePrefs(char *);
  26.  
  27. // External prototypes
  28.  
  29. void DoEasyReq(char *);
  30. void CleanUp();
  31.  
  32. // External references
  33.  
  34. extern struct List MIMEList;
  35. extern const char *DefaultMIMETypes[];
  36. extern char *MIMETypes[];
  37.  
  38. // --------------------------------------------------------------------------------------------------------------
  39.  
  40. // End Of Text
  41.